home *** CD-ROM | disk | FTP | other *** search
/ Chip: Internet / Chip Internet.iso / wwwutil / hotjava.ins / hotjava.exe / hotjava / classsrc / java / tools / jsc / commands / cmd_verbose.java < prev    next >
Text File  |  1995-08-11  |  1KB  |  34 lines

  1. /*
  2.  * @(#)cmd_verbose.java    1.1 95/05/10
  3.  *
  4.  * Copyright (c) 1995 Sun Microsystems, Inc.  All Rights reserved
  5.  * Permission to use, copy, modify, and distribute this software
  6.  * and its documentation for NON-COMMERCIAL purposes and without
  7.  * fee is hereby granted provided that this copyright notice
  8.  * appears in all copies. Please refer to the file copyright.html
  9.  * for further important copyright and licensing information.
  10.  *
  11.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  12.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  13.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  14.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  15.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  16.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  17.  */
  18.  
  19. package java.tools.jsc.commands;
  20. import java.tools.jsc.*;
  21.  
  22. /**
  23.  * A class to implement the "verbose" command.
  24.  * @author  James Gosling
  25.  */
  26.  
  27. public class cmd_verbose implements ScriptCommand {
  28.     public Object eval(ScriptContext ctx) {
  29.     ctx.verbose = ctx.evarg(0) != null;
  30.     return null;
  31.     }
  32. }
  33.  
  34.